home *** CD-ROM | disk | FTP | other *** search
- {*******************************************************}
- { }
- { Delphi VCL Extensions (RX) }
- { }
- { Copyright (c) 2001,2002 SGB Software }
- { Copyright (c) 1997, 1998 Fedor Koshevnikov, }
- { Igor Pavluk and Serge Korolev }
- { }
- {*******************************************************}
-
- unit RXCConst;
-
- { RX controls and components constants }
- {
- Reserved diapasone
- from MaxExtStrID - 36
- to MaxExtStrID - 84
- }
-
- interface
-
- const
- { The minimal VCL's used string ID is 61440. The custom IDs must be
- less that above. }
- MaxExtStrID = 61300;
-
- const
-
- { ToolEdit }
-
- SBrowse = MaxExtStrID - 36;
- SDefaultFilter = MaxExtStrID - 37;
-
- { PickDate }
-
- SDateDlgTitle = MaxExtStrID - 38;
- SNextYear = MaxExtStrID - 39;
- SNextMonth = MaxExtStrID - 40;
- SPrevYear = MaxExtStrID - 41;
- SPrevMonth = MaxExtStrID - 42;
-
- { VCLUtils }
-
- SNotImplemented = MaxExtStrID - 43;
- SFileNotExec = MaxExtStrID - 44;
- SLoadLibError = MaxExtStrID - 45;
- SDetails = MaxExtStrID - 46;
-
- implementation
-
- {$IFDEF WIN32}
- {$R *.R32}
- {$ELSE}
- {$R *.R16}
- {$ENDIF}
-
- end.